home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / ntkb.zip / NTKB.EXE / Q102 / 7 / 38.TXT < prev    next >
Text File  |  1993-08-30  |  3KB  |  68 lines

  1. DOCUMENT:Q102738  10-AUG-1993  [W_NT]
  2. TITLE   :INF: File and Record Locking in Windows NT
  3. PRODUCT :Windows NT
  4. PROD/VER:3.10
  5. OPER/SYS:WINDOWS
  6. KEYWORDS:
  7.  
  8. ----------------------------------------------------------------------
  9. The information in this article applies to:
  10.  
  11.  - Microsoft Windows NT operating system, version 3.1
  12.  - Microsoft Windows NT Advanced Server, version 3.1
  13. ----------------------------------------------------------------------
  14.  
  15. SUMMARY
  16. =======
  17.  
  18. Microsoft Windows NT version 3.1 can support file and record locking
  19. using appropriate Win32 application programming interfaces (APIs).
  20. File sharing with these capabilities can be achieved via Windows NT
  21. server message block (SMB) file sharing protocol extensions.
  22.  
  23. MORE INFORMATION
  24. ================
  25.  
  26. File, record, and field locking are essential for applications that
  27. require sharing a file by multiple users who may be entering data
  28. concurrently. In Windows NT, this may be achieved by using Win32 APIs.
  29.  
  30.  - LockFile - Locks a region in an open file. Locking a region with
  31.    this API denies all other processes read and write access to the
  32.    specified region.
  33.  
  34.  - LockFileEx - Locks a byte range within an open file for shared or
  35.    exclusive access. This API allows read access if shared lock is
  36.    specified but denies write access.
  37.  
  38. If the specified file is at a remote location, the file and record
  39. locking can be handled by one of the SMB.
  40.  
  41.  - LOCKING_ANDX_SHARED_LOCK - Locks a byte range within the specified
  42.    file for shared or exclusive access.
  43.  
  44. Reference(s):
  45.  
  46. 1. NT LAN Manager SMB File Sharing Protocol Extensions by
  47.    Chuck Lenzmeir and Manny Weiser.
  48. 2. Microsoft Win32 Programmer's Reference, Volume 4 page 103.
  49.  
  50. Additional reference words: 3.10 file locking
  51. KBCategory:
  52. KBSubCategry: NETSRV
  53.  
  54. =============================================================================
  55.  
  56. THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS
  57. PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.  MICROSOFT DISCLAIMS
  58. ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES
  59. OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  IN NO
  60. EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR
  61. ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL,
  62. CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF
  63. MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE
  64. POSSIBILITY OF SUCH DAMAGES.  SOME STATES DO NOT ALLOW THE EXCLUSION
  65. OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES
  66. SO THE FOREGOING LIMITATION MAY NOT APPLY.
  67.  
  68. Copyright Microsoft Corporation 1993.